home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / Moscow ML 1.42 / lib_extras / OS.sig < prev    next >
Encoding:
Text File  |  1997-07-22  |  388 b   |  15 lines  |  [TEXT/R*ch]

  1. (* OS -- SML Basis Library *)
  2.  
  3. type syserror
  4.  
  5. exception SysErr of string * syserror option
  6.  
  7. val errorMsg : syserror -> string
  8.  
  9. (*  Various functions for interacting with the operating system.
  10.  
  11.    [errorMsg err] returns a string explaining the error message system
  12.    error code err, as found in a SysErr exception.  The precise form
  13.    of the strings are operating system dependent.  
  14. *)
  15.